Confidence Interval for population mean
Confidence Intervals for Population Mean
Formula and Components
- Basic formula:
- Where:
= sample mean = sample standard deviation = sample size = critical value from t-distribution
Required Conditions
For a valid confidence interval:
- Random sample from the population
- Either:
- Sample size
, or - Population is normally distributed
- Sample size
Normal vs. t-Distribution
- When
is known (rare): Use normal distribution with - When
is unknown (common): Use t-distribution with
Finding Critical Values
- For 95% CI:
(in R: qt(0.975, df=n-1)
) - For 90% CI:
(in R: qt(0.95, df=n-1)
) - For 99% CI:
(in R: qt(0.995, df=n-1)
)
Margin of Error
- Margin of Error (ME):
- Represents the precision of your estimate
Interpretation
"We are [confidence level]% confident that the true population mean μ is between [lower bound] and [upper bound]."
Key Relationships
- Higher confidence level → wider interval
- Larger sample size → narrower interval
t-Distribution Properties
- Symmetric around zero
- Bell-shaped but with heavier tails than Normal
- Approaches Normal as sample size increases
- Uses degrees of freedom (df = n-1)